home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / oftpd < prev    next >
Text File  |  2005-12-06  |  676b  |  30 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd,v 1.4 2005/07/02 23:15:07 eradicator Exp $
  5.  
  6. depend() {
  7.     need net
  8. }
  9.  
  10. checkconfig() {
  11.     if [ -z "$FTPUSER" ] || [ -z "$FTPROOT" ] ; then
  12.         eerror "You need to setup FTPUSER and FTPROOT in /etc/conf.d/oftpd"
  13.         return 1
  14.     fi
  15. }
  16.  
  17. start() {
  18.     checkconfig || return 1
  19.     ebegin "Starting oftpd"
  20.     start-stop-daemon --start --quiet --exec /usr/sbin/oftpd \
  21.         -- ${FTPUSER} ${FTPROOT}
  22.     eend $?
  23. }
  24.  
  25. stop() {
  26.     ebegin "Stopping oftpd"
  27.     start-stop-daemon --stop --quiet --exec /usr/sbin/oftpd
  28.     eend $?
  29. }
  30.